crypto/tls.Conn.conn (field)
20 uses
crypto/tls (current package)
conn.go#L29: conn net.Conn
conn.go#L130: return c.conn.LocalAddr()
conn.go#L135: return c.conn.RemoteAddr()
conn.go#L142: return c.conn.SetDeadline(t)
conn.go#L148: return c.conn.SetReadDeadline(t)
conn.go#L155: return c.conn.SetWriteDeadline(t)
conn.go#L162: return c.conn
conn.go#L625: if err := c.readFromUntil(c.conn, recordHeaderLen); err != nil {
conn.go#L668: return c.in.setErrorLocked(c.newRecordHeaderError(c.conn, "first record does not look like a TLS handshake"))
conn.go#L676: if err := c.readFromUntil(c.conn, recordHeaderLen+n); err != nil {
conn.go#L944: n, err := c.conn.Write(data)
conn.go#L954: n, err := c.conn.Write(c.sendBuf)
conn.go#L1418: return c.conn.Close()
conn.go#L1428: if err := c.conn.Close(); err != nil {
conn.go#L1531: _ = c.conn.Close()
handshake_client.go#L1116: if c.conn != nil {
handshake_client.go#L1117: return c.conn.RemoteAddr().String()
handshake_server.go#L950: Conn: c.conn,
tls.go#L36: conn: conn,
tls.go#L49: conn: conn,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |